home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / kh_gdi.zip / GD_DMEDF.H < prev    next >
C/C++ Source or Header  |  1996-05-11  |  1KB  |  40 lines

  1. #if !defined(__gd_dmedf_h)              // Sentry, use file only if it's not already included.
  2. #define __gd_dmedf_h
  3.  
  4. /*  Project gdi_demo
  5.     
  6.     Copyright ⌐ 1995-96. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    gdi_demo.exe Application
  9.     FILE:         gd_dmedf.h
  10.     AUTHOR:       S.Vartanov
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for gdi_demoEditFile (TEditFile).      
  16. */
  17.  
  18.  
  19. #include <owl\owlpch.h>
  20. #pragma hdrstop
  21.  
  22.  
  23. #include "gd_mapp.rh"            // Definition of all resources.
  24.  
  25.  
  26. //{{TEditFile = gdi_demoEditFile}}
  27. class gdi_demoEditFile : public TEditFile {
  28. public:
  29.     gdi_demoEditFile (TWindow* parent = 0, int id = 0, const char far* text = 0, int x = 0, int y = 0, int w = 0, int h = 0, const char far* fileName = 0, TModule* module = 0);
  30.     virtual ~gdi_demoEditFile ();
  31.  
  32. //{{gdi_demoEditFileVIRTUAL_BEGIN}}
  33. public:
  34.     virtual void SetupWindow ();
  35. //{{gdi_demoEditFileVIRTUAL_END}}
  36. };    //{{gdi_demoEditFile}}
  37.  
  38.  
  39. #endif                                      // __gd_dmedf_h sentry.
  40.